home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / af2gb013.zip / TEMPLATE.ZIP / LIST.APL < prev    next >
Text File  |  1995-09-16  |  1KB  |  38 lines

  1. ; Template file: LIST.APL
  2. ; Type         : AreaMgr
  3. ;
  4. ; This template generates one list of all the fileechos with the access
  5. ; code in the first collumn.
  6. ;
  7. @assign(@count,0)
  8. @assign(@doneheader,"No")
  9. @areabegin
  10. @test(@doneheader,=,"No")
  11.   The following is a list of all the fileechos and your access level:
  12.  
  13.  
  14.   Fileecho      Description                                Avg Kb   Avg Files
  15.   ---------------------------------------------------------------------------
  16. @assign(@doneheader,"Yes")
  17. @end
  18. @echostat @just(@fileecho,L,14)@just(@echodesc,L,39) @just(@avgkb,R,9)   @just(@avgfiles,R,9)
  19. @add(@count,1)
  20. @end
  21. @test(@doneheader,=,"Yes")
  22.   ---------------------------------------------------------------------------
  23.   @count fileecho(s)
  24. @end
  25. @test(@count,=,0)
  26.   You are not connected to any fileechos
  27. @else
  28.  
  29. "+"  You are connected to the fileecho and only receive files from our system.
  30. "*"  You are connected to the fileecho and only send files to our system.
  31. "&"  You are connected to the fileecho and both send and receive files.
  32. "-"  You do not have access to the fileecho.
  33. " "  You are not connected to the fileecho.
  34. @end
  35.  
  36. ---
  37.  * Origin: use %HELP for help using the AreaMgr in ALLFIX (@akatouse)
  38.